net/http.http2priorityNode.kids (field)

15 uses

	net/http (current package)
		h2_bundle.go#L11300: 	kids       *http2priorityNode // start of the kids list
		h2_bundle.go#L11314: 			parent.kids = n.next
		h2_bundle.go#L11330: 		n.next = parent.kids
		h2_bundle.go#L11335: 		parent.kids = n
		h2_bundle.go#L11356: 	if n.kids == nil {
		h2_bundle.go#L11369: 	w := n.kids.weight
		h2_bundle.go#L11371: 	for k := n.kids.next; k != nil; k = k.next {
		h2_bundle.go#L11378: 		for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11389: 	for n.kids != nil {
		h2_bundle.go#L11390: 		*tmp = append(*tmp, n.kids)
		h2_bundle.go#L11391: 		n.kids.setParent(nil)
		h2_bundle.go#L11397: 	for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11567: 		k := parent.kids
		h2_bundle.go#L11643: 	for n.kids != nil {
		h2_bundle.go#L11644: 		n.kids.setParent(n.parent)